```jsx
import { View, Button, Text } from 'react-native';
import { Amplify } from 'aws-amplify';
import { Authenticator, useAuthenticator } from '@aws-amplify/ui-react-native';
import awsExports from './src/aws-exports';
Amplify.configure(awsExports);
function Footer() {
const { toResetPassword } = useAuthenticator();
return (
);
},
export default function App() {
return (
}}>
Hello {user.username}
);
}
```